home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo ╔═════════════════════════════════════════════════════════════════╗
- echo ║ This program copies ALT Shareware onto your hard disk. It ║
- echo ║ will complete the following steps: ║
- echo ║ ║
- echo ║ * Create a directory \ALT. ║
- echo ║ ║
- echo ║ * Copy all files on the disk to the directory \ALT. ║
- echo ║ ║
- echo ║ * The compressed files in ALT.ARC will be uncrunched with ║
- echo ║ the command ARKE ALT ║
- echo ║ ║
- echo ║ * The CONFIG.SYS and AUTOEXEC.BAT files are NOT altered. ║
- echo ║ ║
- if %1*==* goto BADDRIVE
- if %1==c: goto OK
- if %1==C: goto OK
- if %1==d: goto OK
- if %1==D: goto OK
- if %1==e: goto OK
- if %1==E: goto OK
- if %1==f: goto OK
- if %1==F: goto OK
- if %1==g: goto OK
- if %1==G: goto OK
- goto BADDRIVE
- :OK
- echo ║ ALT WILL BE INSTALLED ON DRIVE %1 ║
- echo ║ ───────────────────────────────── ║
- echo ║ NOTE: 600,000 bytes of free disk space are required to ║
- echo ║ load and use ALT. ║
- echo ║ ║
- echo ║ * If you do not wish to continue with the installation, ║
- echo ║ press Ctrl-Break ║
- echo ╚═════════════════════════════════════════════════════════════════╝
- pause
- cls
- echo Checking for ALT on default drive....
- if exist ALT.ARC goto CONT1
- echo ╔═════════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ Please make Drive containing the ALT disk the default drive. ║
- echo ║ ║
- echo ╚═════════════════════════════════════════════════════════════════╝
- goto END
- :CONT1
- cls
- echo Creating directory %1\ALT...
- md %1\ALT
- echo ─────────────────────────────────────────────────────────────────────────────
- echo Copying ALT.ARC to %1\ALT...
- copy ALT.ARC %1\ALT
- echo Copying READ.ME to %1\ALT
- copy READ.ME %1\ALT
- echo Copying ARKE.COM to %1\ALT
- copy ARKE.COM %1\ALT
- %1
- cd %1\ALT
- echo Uncrunching ALT.ARC ...
- echo ─────────────────────────────────────────────────────────────────────────────
- ARKE -r ALT >nul
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ ALT ║
- echo ║ ║
- echo ║ Copyright (C) 1987,88,89 INSTINCT Software ║
- echo ║ 11311 N. Central Expy Suite 300 ║
- echo ║ Dallas, Texas ║
- echo ║ 75243 ║
- echo ║ ║
- echo ║ Order (214) 739-5543 BBS Support Line (214) 368-2709 ║
- echo ║ ║
- echo ║ ALT is installed. ALT can be started by going to the ║
- echo ║ \ALT directory and entering in ALT, or from another ║
- echo ║ directory and entering in ALT as long as ALT.EXE can ║
- echo ║ be found in the current PATH. ║
- echo ║ ║
- echo ║ Once ALT is loaded into memory a VERY short tap on the ALT ║
- echo ║ key will bring up the ALT main menu. ║
- echo ║ ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- cls
- type manual.doc | more /p
- pause
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ ALT will now be started. If you do not want to execute ║
- echo ║ ALT, press Ctrl-Break. ║
- echo ║ ║
- echo ╚════════════════════════════════════════════════════════════════╝
- pause
- ALT
- goto END
- :BADDRIVE
- echo ╚═════════════════════════════════════════════════════════════════╝
- echo .
- echo ╔═════════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ You must specify a hard disk drive, as in INSTALL C: ║
- echo ║ You may use drive C:, D:, E:, F:, or G:. ║
- echo ║ ║
- echo ╚═════════════════════════════════════════════════════════════════╝
- :END
-